Arrays
An example
Let us consider an array of social security numbers. Let picture of the disk represents each of the numbers:
w<data type> <array name>[<size>];
wint SSN[5];
wSSN[1] = 345;
w
0
0
0
345
0
4
3
2
1
0